home *** CD-ROM | disk | FTP | other *** search
/ BMUG PD-ROM BV3 / BMUG PD-ROM Version BV3 (CDRM1097900).iso / HyperCard / Games / HyperArchy / HyperArchy Manual / card_12609.txt < prev    next >
Text File  |  1990-02-11  |  3KB  |  112 lines

  1. -- card: 12609 from stack: in
  2. -- bmap block id: 14270
  3. -- flags: 0000
  4. -- background id: 2784
  5. -- name: 
  6.  
  7.  
  8. -- part 2 (field)
  9. -- low flags: 01
  10. -- high flags: 0000
  11. -- rect: left=6 top=51 right=312 bottom=505
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 0
  15. -- font id: 3
  16. -- text size: 12
  17. -- style flags: 0
  18. -- line height: 16
  19. -- part name: 
  20.  
  21.  
  22. -- part 5 (button)
  23. -- low flags: 00
  24. -- high flags: 0000
  25. -- rect: left=474 top=307 right=336 bottom=510
  26. -- title width / last selected line: 0
  27. -- icon id / first selected line: 26425 / 26425
  28. -- text alignment: 1
  29. -- font id: 0
  30. -- text size: 12
  31. -- style flags: 0
  32. -- line height: 16
  33. -- part name: Next
  34. ----- HyperTalk script -----
  35. on mouseUp
  36.   visual effect scroll left
  37.   go to next card
  38. end mouseUp
  39.  
  40.  
  41. -- part 6 (button)
  42. -- low flags: 00
  43. -- high flags: 0000
  44. -- rect: left=2 top=22 right=51 bottom=38
  45. -- title width / last selected line: 0
  46. -- icon id / first selected line: 29114 / 29114
  47. -- text alignment: 1
  48. -- font id: 0
  49. -- text size: 12
  50. -- style flags: 0
  51. -- line height: 16
  52. -- part name: Return
  53. ----- HyperTalk script -----
  54. on mouseUp
  55.   visual effect iris close
  56.   pop card
  57. end mouseUp
  58.  
  59.  
  60.  
  61. -- part 7 (button)
  62. -- low flags: 00
  63. -- high flags: 0000
  64. -- rect: left=1 top=307 right=336 bottom=38
  65. -- title width / last selected line: 0
  66. -- icon id / first selected line: 902 / 902
  67. -- text alignment: 1
  68. -- font id: 0
  69. -- text size: 12
  70. -- style flags: 0
  71. -- line height: 16
  72. -- part name: Prev
  73. ----- HyperTalk script -----
  74. on mouseUp
  75.   visual effect scroll right
  76.   go to previous card
  77. end mouseUp
  78.  
  79.  
  80. -- part 9 (button)
  81. -- low flags: 00
  82. -- high flags: A004
  83. -- rect: left=131 top=304 right=331 bottom=351
  84. -- title width / last selected line: 0
  85. -- icon id / first selected line: 0 / 0
  86. -- text alignment: 1
  87. -- font id: 0
  88. -- text size: 12
  89. -- style flags: 0
  90. -- line height: 16
  91. -- part name: Click Here for Unlocked Version
  92. ----- HyperTalk script -----
  93. on mouseUp
  94.   push card
  95.   go to card id 17415
  96. end mouseUp
  97.  
  98.  
  99.  
  100. -- part contents for card part 2
  101. ----- text -----
  102. Important Rule:  Don't delete or rename any of the fields that are shipped with the basic Element Card.
  103.  
  104. The "Debug" button's script needs to find a background field called "Data".  That is the name of the large "Data" field on the unmodified Element Card.  If you must delete or rename the "Data" field then, modify the "Debug" button's script and things will be OK.
  105.  
  106. Don't change the "Delete" button's name.  It is necessary for the recursive process that "Delete" does with its Child Cards.  You can change its shape, properties, or position, but don't change its name!
  107.  
  108. The other buttons can can be moved and resized, and can have any name you like, such as "Make New Job" instead of "Create Peer" or "Create Child".
  109. Don't change the scripts unless you know what you are doing.  
  110.  
  111.  
  112.